'Declaration<CLSCompliantAttribute(False)> <ComVisibleAttribute(False)> Public Delegate Sub TargetDataEventHandler(Of TData)( _ ByVal sender As Object, _ ByVal e As TargetDataEventArgs(Of TData) _ )
'UsageDim instance As New TargetDataEventHandler(Of TData)(AddressOf HandlerMethod)
[CLSCompliant(false)] [ComVisible(false)] public delegate void TargetDataEventHandler<TData>( object sender, TargetDataEventArgs<TData> e )
[CLSCompliant(false)] [ComVisible(false)] generic<typename TData> public delegate void TargetDataEventHandler( Object^ sender, TargetDataEventArgs<TData^>^ e )
Parameters
- sender
 - The source of the event. This is set to the target object of the linking.
 - e
 - The event arguments; contain the actual event data.
 
Type Parameters
- TData
 - Type of data handled by this delegate.